home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / Oberon⁄F™ 1.2 / Preinstalled version / Manuals / Biblio (.txt) < prev    next >
Encoding:
Oberon Document  |  1996-07-08  |  14.1 KB  |  172 lines  |  [oODC/obnF]

  1. Documents.StdDocumentDesc
  2. Documents.DocumentDesc
  3. Containers.ViewDesc
  4. Views.ViewDesc
  5. Stores.StoreDesc
  6. Documents.ModelDesc
  7. Containers.ModelDesc
  8. Models.ModelDesc
  9. Stores.ElemDesc
  10. TextViews.StdViewDesc
  11. TextViews.ViewDesc
  12. TextModels.StdModelDesc
  13. TextModels.ModelDesc
  14. TextModels.AttributesDesc
  15. Helvetica
  16. TextRulers.StdRulerDesc
  17. TextRulers.RulerDesc
  18. TextRulers.StdStyleDesc
  19. TextRulers.StyleDesc
  20. TextRulers.AttributesDesc
  21. Helvetica
  22. Helvetica
  23. StdLinks.LinkDesc
  24. StdCmds.OpenBrowser('Manuals/Transfer', 'Effective Technology Transfer')
  25. Helvetica
  26. Helvetica
  27. StdCmds.OpenBrowser('Manuals/CompSW', 'Component SW and Oberon/F')
  28. StdCmds.OpenBrowser('Manuals/COP', 'Component-Oriented Programming')
  29. StdCmds.OpenBrowser('Manuals/WhitePap', 'The Oberon/F White Paper')
  30. StdCmds.OpenAux('Manuals/Ordering', 'Order Form')
  31. Bibliography
  32. Oberon-related literature, ordered chronologically:
  33. "The Oberon System, User Guide and Programmer's Manual"
  34. Martin Reiser
  35. Addison-Wesley, Wokingham England, 1991, ISBN 0-201-54422-9
  36. This is a user guide, tutorial, and reference manual for the original ETH Oberon system. This book is only relevant for someone who is using one of the implementations of the original ETH Oberon.
  37. "Programming in Oberon, Steps beyond Pascal and Modula"
  38. Martin Reiser, Niklaus Wirth
  39. Addison-Wesley, Wokingham England, 1992, ISBN 0-201-56543-9
  40. Programming in Oberon introduces the language Oberon. It provides a programming tutorial that demonstrates modern programming concepts, and a complete language reference that explains the syntax and use of Oberon.
  41. The book is divided up into three main parts. In the first part, basic programming constructs such as scalar data types, declarations, expressions, control structures, etc. are explained. It closes with the description of procedures and modules and enables the reader to write his or her first Oberon modules. The second part introduces traditional programming; in particular it covers structured data types, dynamic data structures, and pointer types. It ends with a description of the important programming techniques of stepwise refinement, abstract data structures, and abstract data types.
  42. The third part finally covers type extension, the most important feature differentiating Oberon from its predecessors. Together with procedure types, object-orientation is introduced. Objects with dynamically bound procedures are covered, as well as message passing and handler procedures. One chapter is devoted to the Oberon-2 extensions of the language. A larger programming example from the field of discrete event simulation completes this last part.
  43. Programming in Oberon is both a tutorial as well as a reference manual for the language Oberon. It serves the novice programmer through its clarity and simplicity. Examples, exercises, and basic formal techniques are used to explain the various language constructs. The program examples are all available through ftp and can be executed under Oberon/F. The book also serves the professional programmer as a reference through its clear structure. An appendix contains the complete Oberon language report and an ASCII table. The latter is an oddity of every Wirth book. In conclusion, Programming in Oberon is a must for everyone interested in the Oberon language and for everyone working seriously with Oberon/F.
  44. "Project Oberon, The Design of an Operating System and Compiler"
  45. Niklaus Wirth, J
  46. rg Gutknecht
  47. Addison-Wesley, Wokingham England, 1992, ISBN 0-201-54428-8
  48. This is a text book on the ETH Oberon system and compiler for the Ceres workstation. It explains the basic concepts underlying the original ETH Oberon system. Particularly interesting is that almost the complete commented source code of the system is given in the book, including the sources for the compiler.
  49. This book is interesting for students of computer science, since it constitutes a case study of a modern software system of very broad scope, and unencumbered by issues dealing with compatibility to legacy systems.
  50. "Insight ETHOS: On Object-Orientation in Operating Systems"
  51. Clemens Szyperski
  52. vdf, Z
  53. rich, 1992, ISBN 3 7281 1948 2
  54. This PhD thesis discusses various aspects of OOP in operating systems, with emphasis on dynamic extensibility and type-safety. Furthermore, the experimental operating system Ethos is described, which had been developed as a demonstration of the concepts developed for the thesis.
  55. Ethos evolved out of the original Oberon system of ETH. It went further than that in mainly three areas: it provided extensibility at every level, instead of providing it in only a few critical spots like the window system. Secondly, it defined and followed some general design principles in order to make "design for extensibility" a more systematic process. Thirdly, it used the static expressiveness of the language Oberon-2 (i.e. modules, types, type-bound procedures, read-only export) to make design decisions explicit (and thus documented and checkable by the compiler) wherever possible. Ethos showed that strong typing and strong modularity do not prevent extensibility. On the contrary, they are very powerful tools to make the development of efficient, robust, and maintainable extensible systems more manageable.
  56. The author is a founder of Oberon microsystems and co-designer of Oberon/F, which is largely based on the results of the Ethos project.
  57. This book is interesting for students of computer science who are interested in the application of OOP to extensible software systems, in particular - but not limited to - operating systems.
  58. "Object-Oriented Programming in Oberon-2"
  59. Hanspeter M
  60. ssenb
  61. Springer Verlag, New York, 1993, ISBN 0-387-56411-X
  62. Object-Oriented Programming in Oberon-2 is a textbook which ingeniously demonstrates the concepts and constructs of object-oriented programming. Particular topics of the book are classes, inheritance, dynamic binding, and generic data structures. The focus of the book are really the concepts of object-oriented programming, and not the peculiarities of some programming language. This is achieved through the choice of Oberon-2 as notation to explain the concepts. Oberon-2 is simple enough to learn and understand, and the object-oriented elements are well embedded into this language. However, the book is not an introduction to the language Oberon-2. One chapter introduces Oberon-2 as far as it is necessary for the understanding of the book. Knowledge of an imperative programming language such as Pascal or Modula-2 is required.
  63. The book also covers some basic design patterns and discusses the object-oriented program design from several points of view. All concepts are explained with the help of suitable examples. The book also discloses how object-oriented programming should not be used, a very instructive section.
  64. The book closes with a large and interesting example: an extensible window system, with applications like a text editor, which is extensible itself. This example demonstrates the use of object-oriented programming techniques for extensible software systems. The study of the source is very informative and instructive as well. Unfortunately, this program does not run under Oberon/F as it is taylored too much to the original ETH-Oberon systems. The book also contains an appendix with the complete Oberon-2 language report, which constitutes the standards document on the language Oberon-2.
  65. This book is a good introduction to object-oriented programming for someone who knows Pascal or Modula, and now wants to learn the basic object-oriented programming techniques. It is easy to read and to understand and thus recommendable to everyone.
  66. "The Oberon/F System"
  67. Dick Pountain
  68. Byte Magazine, Vol. 20, No. 1, January 1995, pp. 227-228
  69. Review of Oberon/F.
  70. Web: http://www.byte.com/art/9501/sec14/art3.htm
  71. "Effective
  72. Technology
  73. Transfer"
  74. Prof. Niklaus Wirth
  75. Institut f
  76. r Computersysteme, ETH Z
  77. rich, Switzerland
  78. The Oberon Tribune (see below), No 1, Vol 1, 1995
  79. "Component
  80. Software
  81. Oberon:
  82. Perspective
  83. Oberon/F"
  84. Bert Fiti
  85. Former account manager at IBM, The Netherlands
  86. The Oberon Tribune (see below), No 1, Vol 1, 1995
  87. "Component-Oriented
  88. Programming:
  89. Refinement on Object-Oriented
  90. Programming"
  91. Prof. Clemens Szyperski
  92. School of Computing Science, Queensland University of Technology, Australia
  93. The Oberon Tribune (see below), No 2, Vol 1, 1995
  94. Oberon/F
  95. White
  96. Paper"
  97. Oberon microsystems, Inc.
  98. The Oberon Tribune (see below), No 2, Vol 1, 1995
  99. Periodicals:
  100. Oberon
  101. Tribune"
  102. Oberon microsystems, Inc.
  103. The Oberon Tribune, the developer newsletter of Oberon microsystems, is a platform for the exchange of technical, strategic, and business information among Oberon Developer Forum members with one another and with Oberon microsystems. For how to become member of the Oberon Developer Forum, see the 
  104. order
  105. General literature, ordered chronologically:
  106. "A cookbook for using the Model-View-Controller user interface paradigm in Smalltalk-80"
  107. G. E. Krasner, S. T. Pope
  108. Journal of Object-Oriented Programming, Vol. 1, No. 3, August 1988, pp. 26..49
  109. This article explains the properties and rationales behind the Model-View-Controller separation. Several motivating examples and sketches of their implementation are given. This article is a classic for those interested in the roots of the MVC separation.
  110. "The Unicode Standard"
  111. The Unicode Consortium
  112. Addison-Wesley, Reading, Massachusetts, 1990, ISBN 0-201-56788-1
  113. This book (volume 1) introduces the Unicode standard, and gives the character mappings of all characters except for the East Asian (Han) ideographic characters, which are described in the second volume.
  114. "Extensible Software Systems"
  115. Dick Pountain, Clemens Szyperski
  116. Byte Magazine, Vol. 19, No. 5, May 1994, pp. 57..62
  117. This article discusses the potential of OOP for the development of extensible software systems, and the obstacles to realizing this potential. The fragile base class problem, and the difficulty of correctly using general inheritance, are explained and put into the context of the discussions between proponents of the SOM and COM object models. The differences between subtyping and subclassing, and between inheritance and delegation are illustrated.
  118. Web: http://www.byte.com/art/9405/sec6/art1.htm
  119. "Object-Oriented Programming Using SOM and DSOM"
  120. Christine Lau
  121. Van Nostrand Reinhold, New York, 1994, ISBN 0-442-01948-3
  122. This book discusses IBM's System Object Model (SOM) and its extension for distributed objects (DSOM).
  123. "OLE 2 Programmer's Reference, Volume 1: Working with Windows Objects"
  124. Microsoft Press, Redmont, Washington, 1994, ISBN 1-55615-628-6
  125. This book includes an introduction to the basics of OLE under Windows, addresses the issues of object class registration as well as details of the OLE 2 user interface. It also provides a comprehensive reference to OLE interfaces and the OLE API.
  126. Dr. Dobb's Special Report
  127. Special issue of Dr. Dobb's about componentware. Articles about SOM, COM, OpenDoc, etc. A good way to get an overview over this topic.
  128. Winter 1994/95
  129. "Inside OLE, 2nd ed."
  130. Kraig Brockschmidt
  131. Microsoft Press, Redmond, Washington, 1995, ISBN 1-55615-843-2
  132. This book is not an introductory text, but a comprehensive reference for the programmer. It also describes the COM object model.
  133. "Essential Distributed Objects Survival Guide"
  134. Robert Orfali, Dan Harkey, Jeri Edwards
  135. John Wiley & Sons Inc., 1996, ISBN 0471-12993-3
  136. Discusses CORBA, OpenDoc, OLE, and much more. Recommended reading for anyone interested in component software.
  137. "One Size Fits One. The Business Case for Component Software"
  138. Robert P. Beech
  139. This article illustrates why component software makes sense both for vendors and for customers. Its argumentation is built around the observation that there is a whole "requirement spectrum", which today has to be served either by inflexible standard software or by risky and expensive custom software. Component software allows to mix standard software and custom software in more appropriate ways.
  140. Web: http://www.pharos.com/BOB_ARTICLE/Bob.html
  141. "Essential OpenDoc"
  142. Jesse Feiler, Anthony Meadow
  143. Addison-Wesley Developers Press, 1996, ISBN 0-201-47958-3
  144. Basic introduction to OpenDoc technology and to the implications of component software for developers, consultants, system integrators, and solution providers.
  145. Electronic Media:
  146. Oberon
  147. http://www.oberon.ch/customers/omi
  148. http://www.math.tau.ac.il/~laden/Ob-pkgs.html
  149. http://www.dstc.edu.au/BDU/staff/bob/Oberon/OberonArch.html
  150. ftp://ftp.inf.ethz.ch/pub/software/Oberon
  151. comp.lang.oberon
  152. http://www.microsoft.com/devonly
  153. http://www.develop.com/olersrc.htm
  154.  ftp://ftp.microsoft.com/developr/drg/OLE-info
  155. comp.os.ms-windows.programmer.ole
  156. CompuServe: GO winobjects
  157. OpenDoc
  158. http://www.cilabs.org
  159. http://opendoc.apple.com/
  160. http://www.software.ibm.com/clubopendoc
  161. http://www.torolab.ibm.com/objects
  162. http://www.omg.org
  163. comp.soft-sys.middleware.opendoc
  164. Component software in general
  165. http://info.gte.com/ftp/doc/activities/x3h7.html
  166. TextControllers.StdCtrlDesc
  167. TextControllers.ControllerDesc
  168. Containers.ControllerDesc
  169. Controllers.ControllerDesc
  170. Helvetica
  171. Documents.ControllerDesc
  172.